home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / wsetup.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-16  |  1.5 KB  |  51 lines

  1. /******************************************************************/
  2. /*                                                                */
  3. /*                      TurboCAD for Windows                      */
  4. /*                   Copyright (c) 1993 - 2001                    */
  5. /*             International Microcomputer Software, Inc.         */
  6. /*                            (IMSI)                              */
  7. /*                      All rights reserved.                      */
  8. /*                                                                */
  9. /******************************************************************/
  10.  
  11. // WSetup.h : header file
  12. //
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CJPEGWriteSetup dialog
  16.  
  17. class CJPEGWriteSetup : public CDialog
  18. {
  19. // Construction
  20. public:
  21.     CJPEGWriteSetup(CWnd* pParent = NULL);   // standard constructor
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CJPEGWriteSetup)
  25.     enum { IDD = IDD_JPEG_WRITE_SETUP };
  26.     UINT    m_nHeight;
  27.     UINT    m_nWidth;
  28.     //}}AFX_DATA
  29.  
  30. // Operations
  31. public:
  32.     void FromProfile(LPCTSTR szProfile);
  33.     void ToProfile(LPCTSTR szProfile);
  34.  
  35. // Overrides
  36.     // ClassWizard generated virtual function overrides
  37.     //{{AFX_VIRTUAL(CJPEGWriteSetup)
  38.     protected:
  39.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40.     //}}AFX_VIRTUAL
  41.  
  42. // Implementation
  43. protected:
  44.  
  45.     // Generated message map functions
  46.     //{{AFX_MSG(CJPEGWriteSetup)
  47.         // NOTE: the ClassWizard will add member functions here
  48.     //}}AFX_MSG
  49.     DECLARE_MESSAGE_MAP()
  50. };
  51.